home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / NextAnswers / UniqueKey_sybase / installPEOPLE.sqlsybase next >
Text File  |  1994-06-30  |  52KB  |  1,960 lines

  1. /******************************************************************************
  2. * Create the PEOPLE database by pasting this file into an isql terminal window.
  3. ******************************************************************************/
  4. use master
  5. go
  6. drop database PEOPLE
  7. go
  8.  
  9. create database PEOPLE
  10. go
  11. use PEOPLE
  12. go
  13.  
  14. /******************************************************************************
  15. * Cut below this banner to just drop the tables.
  16. *
  17. * If you do elect to do this and do not drop the database, dump tran insures
  18. * that your transaction log will not fill up.  Dump tran is not generally used
  19. * unless the database has been backed up by a dump, but we include it here 
  20. * since this is only an example and the data is restored in this file.
  21. ******************************************************************************/
  22. dump tran PEOPLE with no_log
  23. go
  24. drop table EMPLOYEE 
  25. go
  26. drop table DEPARTMENT 
  27. go
  28. drop table FACILITY
  29. go
  30. drop table EMP_PROJECT
  31. go
  32. drop table PROJECT
  33. go
  34. drop table EMP_PHOTO 
  35. go
  36. drop table EMP_QUOTE 
  37. go
  38. drop table JOB_TITLE 
  39. go
  40. drop table EMP_EQUIPMENT 
  41. go
  42. drop table UNIQUE_KEY 
  43. go
  44.  
  45.  
  46. /******************************************************************************
  47. *  Create the tables.
  48. ******************************************************************************/
  49. create table EMPLOYEE (
  50. EMP_ID int,
  51. DEPT_ID int null,
  52. LAST_NAME varchar(40),
  53. FIRST_NAME varchar(40),
  54. PHONE char(12) null,
  55. ADDRESS varchar(40) null,
  56. CITY varchar(20) null,
  57. STATE char(2) null,
  58. ZIP char(5) null,
  59. TITLE_ID int null,
  60. HIRE_DATE datetime null,
  61. MANAGER int null,
  62. SALARY float null
  63. )
  64. go
  65.  
  66. create table DEPARTMENT (
  67. DEPT_ID int,
  68. DEPARTMENT_NAME varchar(30),
  69. LOCATION_ID int 
  70. )
  71. go
  72.  
  73. create table FACILITY (
  74. LOCATION_ID int,
  75. LOCATION varchar(30),
  76. PHOTO image null
  77. )
  78. go
  79.  
  80. create table EMP_PROJECT (
  81. EMP_ID int,
  82. PROJECT_ID int,
  83. )
  84. go
  85.  
  86. create table PROJECT (
  87. PROJECT_ID int,
  88. PROJECT_NAME varchar(30),
  89. SUMMARY_IMAGE image null
  90. )
  91. go
  92.  
  93. create table EMP_PHOTO (
  94. EMP_ID int,
  95. PHOTO image null
  96. )
  97. go
  98.  
  99. create table EMP_QUOTE (
  100. EMP_ID int,
  101. QUOTE image null
  102. )
  103. go
  104.  
  105. create table JOB_TITLE (
  106. TITLE_ID int,
  107. TITLE varchar(30),
  108. TITLE_TYPE varchar(12)
  109. )
  110. go
  111.  
  112. create table EMP_EQUIPMENT (
  113. ASSET_TAG int,
  114. DESCRIPTION varchar(100) null,
  115. SERIAL_NUMBER varchar(20) null,
  116. EMP_ID int null
  117. )
  118. go
  119.  
  120.  
  121. /******************************************************************************
  122. *  Insert values.
  123. ******************************************************************************/
  124. begin transaction
  125. go
  126.  
  127. insert into  FACILITY values(1101, 'Waterfront One', null)
  128. go
  129.  
  130. insert into  FACILITY values(1103, 'Hillside 1', null)
  131. go
  132.  
  133. insert into  FACILITY values(1106, 'Hillside 2', null)
  134. go
  135.  
  136. insert into  FACILITY values(1207, 'Embarcadero', null)
  137. go
  138.  
  139. insert into  FACILITY values(1104, 'Arcada', null)
  140. go
  141.  
  142. insert into EMP_PROJECT values (101, 501) 
  143. go
  144.  
  145. insert into EMP_PROJECT values (102, 503) 
  146. go
  147.  
  148. insert into EMP_PROJECT values (103, 507) 
  149. go
  150.  
  151. insert into EMP_PROJECT values (104, 510) 
  152. go
  153.  
  154. insert into EMP_PROJECT values (105, 512) 
  155. go
  156.  
  157. insert into EMP_PROJECT values (106, 501) 
  158. go
  159.  
  160. insert into EMP_PROJECT values (107, 503) 
  161. go
  162.  
  163. insert into EMP_PROJECT values (108, 507) 
  164. go
  165.  
  166. insert into EMP_PROJECT values (109, 510) 
  167. go
  168.  
  169. insert into EMP_PROJECT values (110, 512) 
  170. go
  171.  
  172. insert into EMP_PROJECT values (111, 501) 
  173. go
  174.  
  175. insert into EMP_PROJECT values (112, 503) 
  176. go
  177.  
  178. insert into EMP_PROJECT values (113, 507) 
  179. go
  180.  
  181. insert into EMP_PROJECT values (114, 510) 
  182. go
  183.  
  184. insert into EMP_PROJECT values (115, 512) 
  185. go
  186.  
  187. insert into EMP_PROJECT values (116, 501) 
  188. go
  189.  
  190. insert into EMP_PROJECT values (117, 503) 
  191. go
  192.  
  193. insert into EMP_PROJECT values (118, 507) 
  194. go
  195.  
  196. insert into EMP_PROJECT values (119, 510) 
  197. go
  198.  
  199. insert into EMP_PROJECT values (120, 512) 
  200. go
  201.  
  202. insert into EMP_PROJECT values (121, 501) 
  203. go
  204.  
  205. insert into EMP_PROJECT values (122, 503) 
  206. go
  207.  
  208. insert into EMP_PROJECT values (123, 507) 
  209. go
  210.  
  211. insert into EMP_PROJECT values (124, 510) 
  212. go
  213.  
  214. insert into EMP_PROJECT values (125, 512) 
  215. go
  216.  
  217. insert into EMP_PROJECT values (126, 501) 
  218. go
  219.  
  220. insert into EMP_PROJECT values (127, 503) 
  221. go
  222.  
  223. insert into EMP_PROJECT values (128, 507) 
  224. go
  225.  
  226. insert into EMP_PROJECT values (129, 510) 
  227. go
  228.  
  229. insert into EMP_PROJECT values (130, 512) 
  230. go
  231.  
  232. insert into EMP_PROJECT values (131, 501) 
  233. go
  234.  
  235. insert into EMP_PROJECT values (132, 503) 
  236. go
  237.  
  238. insert into EMP_PROJECT values (133, 507) 
  239. go
  240.  
  241. insert into EMP_PROJECT values (134, 510) 
  242. go
  243.  
  244. insert into EMP_PROJECT values (135, 512) 
  245. go
  246.  
  247. insert into EMP_PROJECT values (136, 501) 
  248. go
  249.  
  250. insert into EMP_PROJECT values (137, 503) 
  251. go
  252.  
  253. insert into EMP_PROJECT values (138, 507) 
  254. go
  255.  
  256. insert into EMP_PROJECT values (139, 510) 
  257. go
  258.  
  259. insert into EMP_PROJECT values (140, 512) 
  260. go
  261.  
  262. insert into EMP_PROJECT values (141, 501) 
  263. go
  264.  
  265. insert into EMP_PROJECT values (142, 503) 
  266. go
  267.  
  268. insert into EMP_PROJECT values (143, 507) 
  269. go
  270.  
  271. insert into EMP_PROJECT values (144, 510) 
  272. go
  273.  
  274. insert into EMP_PROJECT values (145, 512) 
  275. go
  276.  
  277. insert into EMP_PROJECT values (146, 501) 
  278. go
  279.  
  280. insert into EMP_PROJECT values (147, 503) 
  281. go
  282.  
  283. insert into EMP_PROJECT values (148, 507) 
  284. go
  285.  
  286. insert into EMP_PROJECT values (149, 510) 
  287. go
  288.  
  289. insert into EMP_PROJECT values (150, 512) 
  290. go
  291.  
  292. insert into EMP_PROJECT values (151, 501) 
  293. go
  294.  
  295. insert into EMP_PROJECT values (152, 503) 
  296. go
  297.  
  298. insert into EMP_PROJECT values (153, 507) 
  299. go
  300.  
  301. insert into EMP_PROJECT values (154, 510) 
  302. go
  303.  
  304. insert into EMP_PROJECT values (155, 512) 
  305. go
  306.  
  307. insert into EMP_PROJECT values (156, 501) 
  308. go
  309.  
  310. insert into EMP_PROJECT values (157, 503) 
  311. go
  312.  
  313. insert into EMP_PROJECT values (158, 507) 
  314. go
  315.  
  316. insert into EMP_PROJECT values (159, 510) 
  317. go
  318.  
  319. insert into EMP_PROJECT values (160, 512) 
  320. go
  321.  
  322. insert into EMP_PROJECT values (161, 501) 
  323. go
  324.  
  325. insert into EMP_PROJECT values (162, 503) 
  326. go
  327.  
  328. insert into EMP_PROJECT values (163, 507) 
  329. go
  330.  
  331. insert into EMP_PROJECT values (164, 510) 
  332. go
  333.  
  334. insert into EMP_PROJECT values (165, 512) 
  335. go
  336.  
  337. insert into EMP_PROJECT values (166, 501) 
  338. go
  339.  
  340. insert into EMP_PROJECT values (167, 503) 
  341. go
  342.  
  343. insert into EMP_PROJECT values (168, 507) 
  344. go
  345.  
  346. insert into EMP_PROJECT values (169, 510) 
  347. go
  348.  
  349. insert into EMP_PROJECT values (170, 512) 
  350. go
  351.  
  352. insert into EMP_PROJECT values (171, 501) 
  353. go
  354.  
  355. insert into EMP_PROJECT values (172, 503) 
  356. go
  357.  
  358. insert into EMP_PROJECT values (173, 507) 
  359. go
  360.  
  361. insert into EMP_PROJECT values (174, 510) 
  362. go
  363.  
  364. insert into EMP_PROJECT values (175, 512) 
  365. go
  366.  
  367. insert into EMP_PROJECT values (176, 501) 
  368. go
  369.  
  370. insert into EMP_PROJECT values (177, 503) 
  371. go
  372.  
  373. insert into EMP_PROJECT values (178, 507) 
  374. go
  375.  
  376. insert into EMP_PROJECT values (179, 510) 
  377. go
  378.  
  379. insert into EMP_PROJECT values (180, 512) 
  380. go
  381.  
  382. insert into EMP_PROJECT values (181, 501) 
  383. go
  384.  
  385. insert into EMP_PROJECT values (182, 503) 
  386. go
  387.  
  388. insert into EMP_PROJECT values (183, 507) 
  389. go
  390.  
  391. insert into EMP_PROJECT values (184, 510) 
  392. go
  393.  
  394. insert into EMP_PROJECT values (185, 512) 
  395. go
  396.  
  397. insert into EMP_PROJECT values (186, 501) 
  398. go
  399.  
  400. insert into EMP_PROJECT values (187, 503) 
  401. go
  402.  
  403. insert into EMP_PROJECT values (188, 507) 
  404. go
  405.  
  406. insert into EMP_PROJECT values (189, 510) 
  407. go
  408.  
  409. insert into EMP_PROJECT values (190, 512) 
  410. go
  411.  
  412. insert into EMP_PROJECT values (191, 501) 
  413. go
  414.  
  415. insert into EMP_PROJECT values (192, 503) 
  416. go
  417.  
  418. insert into EMP_PROJECT values (193, 507) 
  419. go
  420.  
  421. insert into EMP_PROJECT values (194, 510) 
  422. go
  423.  
  424. insert into EMP_PROJECT values (195, 512) 
  425. go
  426.  
  427. insert into EMP_PROJECT values (196, 501) 
  428. go
  429.  
  430. insert into EMP_PROJECT values (197, 503) 
  431. go
  432.  
  433. insert into EMP_PROJECT values (198, 507) 
  434. go
  435.  
  436. insert into EMP_PROJECT values (199, 510) 
  437. go
  438.  
  439. insert into EMP_PROJECT values (200, 512) 
  440. go
  441.  
  442. insert into EMP_PROJECT values (201, 501) 
  443. go
  444.  
  445. insert into EMP_PROJECT values (202, 503) 
  446. go
  447.  
  448. insert into EMP_PROJECT values (203, 507) 
  449. go
  450.  
  451. insert into EMP_PROJECT values (204, 510) 
  452. go
  453.  
  454. insert into EMP_PROJECT values (205, 512) 
  455. go
  456.  
  457. insert into EMP_PROJECT values (206, 501) 
  458. go
  459.  
  460. insert into EMP_PROJECT values (207, 503) 
  461. go
  462.  
  463. insert into EMP_PROJECT values (208, 507) 
  464. go
  465.  
  466. insert into EMP_PROJECT values (209, 510) 
  467. go
  468.  
  469. insert into EMP_PROJECT values (210, 512) 
  470. go
  471.  
  472. insert into EMP_PROJECT values (211, 501) 
  473. go
  474.  
  475. insert into EMP_PROJECT values (212, 503) 
  476. go
  477.  
  478. insert into EMP_PROJECT values (213, 507) 
  479. go
  480.  
  481. insert into EMP_PROJECT values (214, 510) 
  482. go
  483.  
  484. insert into EMP_PROJECT values (215, 512) 
  485. go
  486.  
  487. insert into EMP_PROJECT values (216, 501) 
  488. go
  489.  
  490. insert into EMP_PROJECT values (217, 503) 
  491. go
  492.  
  493. insert into EMP_PROJECT values (218, 507) 
  494. go
  495.  
  496. insert into EMP_PROJECT values (219, 510) 
  497. go
  498.  
  499. insert into EMP_PROJECT values (220, 512) 
  500. go
  501.  
  502. insert into EMP_PROJECT values (221, 501) 
  503. go
  504.  
  505. insert into EMP_PROJECT values (222, 503) 
  506. go
  507.  
  508. insert into EMP_PROJECT values (223, 507) 
  509. go
  510.  
  511. insert into EMP_PROJECT values (224, 510) 
  512. go
  513.  
  514. insert into EMP_PROJECT values (225, 512)
  515. go
  516.  
  517.  
  518. insert into PROJECT values( 501, 'BankLink Financials', null)
  519. go
  520.  
  521. insert into PROJECT values( 503, 'Crossover Environment', null)
  522. go
  523.  
  524. insert into PROJECT values( 507, 'Net DesignWorks', null)
  525. go
  526.  
  527. insert into PROJECT values( 510, 'InfoVault', null)
  528. go
  529.  
  530. insert into PROJECT values( 512, 'Customer Satisfaction', null)
  531. go
  532.  
  533.  
  534. insert into  DEPARTMENT values (100, 'General and Administration', 1104)
  535. go
  536.  
  537. insert into  DEPARTMENT values (101, 'Office of the President', 1207)
  538. go
  539.  
  540. insert into  DEPARTMENT values (104, 'Reception', 1104)
  541. go
  542.  
  543. insert into  DEPARTMENT values (105, 'Adminstration', 1103)
  544. go
  545.  
  546. insert into  DEPARTMENT values (200, 'Production and Design', 1103)
  547. go
  548.  
  549. insert into  DEPARTMENT values (201, 'Art Design', 1104)
  550. go
  551.  
  552. insert into  DEPARTMENT values (202, 'Hardware Engineering', 1106)
  553. go
  554.  
  555. insert into  DEPARTMENT values (203, 'System Software', 1106)
  556. go
  557.  
  558. insert into  DEPARTMENT values (204, 'User Software', 1101)
  559. go
  560.  
  561. insert into  DEPARTMENT values (250, 'Production', 1106)
  562. go
  563.  
  564. insert into  DEPARTMENT values (252, 'Logistics', 1101)
  565. go
  566.  
  567. insert into  DEPARTMENT values (300, 'Sales and Marketing', 1207)
  568. go
  569.  
  570. insert into  DEPARTMENT values (320, 'Domestic Marketing', 1207)
  571. go
  572.  
  573. insert into  DEPARTMENT values (330, 'International Marketing', 1207)
  574. go
  575.  
  576. insert into  DEPARTMENT values (350, 'Sales', 1207)
  577. go
  578.  
  579. insert into  DEPARTMENT values (400, 'Customer Service', 1106)
  580. go
  581.  
  582. insert into  DEPARTMENT values (405, 'Service Logistics', 1106)
  583. go
  584.  
  585. insert into  DEPARTMENT values (410, 'Customer Front-Line', 1106)
  586. go
  587.  
  588. insert into  DEPARTMENT values (420, 'Customer Back-Line', 1106)
  589. go
  590.  
  591. insert into  DEPARTMENT values (500, 'Personnel', 1101)
  592. go
  593.  
  594. insert into  DEPARTMENT values (900, 'Public Relations', 1104)
  595. go
  596.  
  597.  
  598. insert into JOB_TITLE values (1, 'President', 'Salaried')
  599. go
  600.  
  601. insert into JOB_TITLE values (2, 'Vice President', 'Salaried')
  602. go
  603.  
  604. insert into JOB_TITLE values (3, 'Director', 'Salaried')
  605. go
  606.  
  607. insert into JOB_TITLE values (4, 'MANAGER', 'Salaried')
  608. go
  609.  
  610. insert into JOB_TITLE values (5, 'Engineer', 'Hourly')
  611. go
  612.  
  613. insert into JOB_TITLE values (6, 'Designer', 'Hourly')
  614. go
  615.  
  616. insert into JOB_TITLE values (7, 'Sales Representative', 'Salaried')
  617. go
  618.  
  619. insert into JOB_TITLE values (8, 'Administrator', 'Hourly')
  620. go
  621.  
  622. insert into JOB_TITLE values (9, 'Customer Representative', 'Hourly')
  623. go
  624.  
  625. insert into JOB_TITLE values (10, 'Product MANAGER', 'Salaried')
  626. go
  627.  
  628. insert into JOB_TITLE values (11, 'Benefits and Compensation', 'Hourly')
  629. go
  630.  
  631. insert into JOB_TITLE values (12, 'Associate', 'Hourly')
  632. go
  633.  
  634.  
  635. insert into EMPLOYEE values ( 101, 101, 'Winston', 'James', '415-323-7265',
  636.  '6269 Washington Ave.', 'Woodside', 'CA', '94160', 1,
  637.  'Jan 14 1989 12:00:00:000AM', 101, 5700.00 )
  638.  
  639. go
  640.  
  641. insert into EMPLOYEE values ( 102, 200, 'Veasey', 'Kai', '415-323-261 ',
  642.  '3401 Strand St.', 'Woodside', 'CA', '94153', 2,
  643.  'Aug 19 1991 12:00:00:000AM', 1, 4600.00 )
  644.  
  645. go
  646.  
  647. insert into EMPLOYEE values ( 103, 400, 'MacAskill', 'Debra', '415-328-4407',
  648.  '3495 Middlefield Ave.', 'Mountain View', 'CA', '94245', 2,
  649.  'Nov 19 1992 12:00:00:000AM', 101, 4300.00 )
  650.  
  651. go
  652.  
  653. insert into EMPLOYEE values ( 104, 104, 'Oswald', 'Lesley', '415-321-564 ',
  654.  '6751 Chowen St.', 'Sunnyvale', 'CA', '94234', 4,
  655.  'Jun 20 1994 12:00:00:000AM', 101, 4200.00 )
  656.  
  657. go
  658.  
  659. insert into EMPLOYEE values ( 105, 320,'Scheer', 'Janine', '415-327-9345',
  660.  '295 Poplar Road', 'San Jose', 'CA', '94226', 4,
  661.  'Jan  5 1990 12:00:00:000AM', 107, 5700.00 )
  662.  
  663. go
  664.  
  665. insert into EMPLOYEE values ( 106, 500, 'Maselli', 'John', '415-328-9769',
  666.  '3494 Pelican Ave.', 'Palo Alto', 'CA', '94226', 2,
  667.  'Apr 16 1992 12:00:00:000AM', 101, 4900.00 )
  668.  
  669. go
  670.  
  671. insert into EMPLOYEE values ( 107, 300, 'Lunau', 'Ken', '415-322-2815',
  672.  '7163 York Road', 'Woodside', 'CA', '94174', 2,
  673.  'Dec 12 1991 12:00:00:000AM', 101, 5600.00 )
  674.  
  675. go
  676.  
  677. insert into EMPLOYEE values ( 108, 203, 'DeKeyser', 'John', '415-326-9241',
  678.  '5633 High Road', 'Mountain View', 'CA', '94228', 3,
  679.  'Nov 18 1989 12:00:00:000AM', 102, 5200.00 )
  680.  
  681. go
  682.  
  683. insert into EMPLOYEE values ( 109, 900, 'Windgate', 'Mark', '415-321-3718',
  684.  '4615 Oak Ave.', 'Oakland', 'CA', '94194', 2,
  685.  'Feb 20 1990 12:00:00:000AM', 101, 4000.00 )
  686.  
  687. go
  688.  
  689. insert into EMPLOYEE values ( 110, 400,'Walsh', 'Phyllis', '415-327-2599',
  690.  '3746 Oak Road', 'Palo Alto', 'CA', '94165', 5,
  691.  'Aug 14 1991 12:00:00:000AM', 103, 4900.00 )
  692.  
  693. go
  694.  
  695.  
  696. insert into EMPLOYEE values ( 111, 203, 'Quan', 'Merianne', '415-323-9827',
  697.  '7503 Washington Blvd.', 'Redwood City', 'CA', '94223', 5,
  698.  'Apr  6 1988 12:00:00:000AM', 102, 4700.00 )
  699.  
  700. go
  701.  
  702. insert into EMPLOYEE values ( 112, 300, 'Kanzaki', 'Mark', '415-324-7911',
  703.  '2709 Kristen St.', 'Woodside', 'CA', '94219', 3,
  704.  'Apr  5 1988 12:00:00:000AM', 107, 4500.00 )
  705. go
  706.  
  707. insert into EMPLOYEE values ( 113, 400, 'Helton', 'Dung', '415-320-6474',
  708.  '4397 Schoman Road', 'Woodside', 'CA', '94173', 5,
  709.  'Oct  9 1990 12:00:00:000AM', 103, 5600.00 )
  710.  
  711. go
  712.  
  713. insert into EMPLOYEE values ( 114, 200, 'Thiry', 'Greg', '415-326-4613',
  714.  '3883 Drew Road', 'Redwood City', 'CA', '94198', 10,
  715.  'Mar 13 1988 12:00:00:000AM', 102, 4700.00 )
  716.  
  717. go
  718.  
  719. insert into EMPLOYEE values ( 115, 400,'Gath', 'Jon', '415-322-1987',
  720.  '502 Johnson St.', 'Santa Clara', 'CA', '94209', 5,
  721.  'Nov  4 1989 12:00:00:000AM', 103, 5100.00 )
  722.  
  723. go
  724.  
  725. insert into EMPLOYEE values ( 116, 203, 'Kallimani', 'Yoshinori', '415-322-6335',
  726.  '7099 Knuth Ave.', 'San Jose', 'CA', '94214', 3,
  727.  'Dec 26 1990 12:00:00:000AM', 102, 4200.00 )
  728.  
  729. go
  730.  
  731. insert into EMPLOYEE values ( 117, 405, 'Hojnowski', 'Gregor', '415-323-2994',
  732.  '5215 Strand Way', 'Pacific Heights', 'CA', '94209', 5,
  733.  'Oct 25 1992 12:00:00:000AM', 103, 5200.00 )
  734.  
  735. go
  736.  
  737. insert into EMPLOYEE values ( 118, 300, 'Tautz', 'Denise', '415-322-3937',
  738.  '7851 Oak Trail', 'Woodside', 'CA', '94181', 10,
  739.  'Mar  3 1992 12:00:00:000AM', 107, 5100.00 )
  740.  
  741. go
  742.  
  743. insert into EMPLOYEE values ( 119, 500, 'Upson', 'Alex', '415-323-11  ',
  744.  '1440 Addams Circle', 'Mountain View', 'CA', '94193', 4,
  745.  'Sep  9 1989 12:00:00:000AM', 106, 4900.00 )
  746.  
  747. go
  748.  
  749. insert into EMPLOYEE values ( 120, 350,'Riley', 'Michael', '415-323-2795',
  750.  '7747 Pope Road', 'Redwood City', 'CA', '94195', 7,
  751.  'Feb  3 1991 12:00:00:000AM', 107, 4300.00 )
  752.  
  753. go
  754.  
  755.  
  756. insert into EMPLOYEE values ( 121, 252, 'Kammerer', 'Sanjay', '415-328-3042',
  757.  '7331 Walnut Ave.', 'Palo Alto', 'CA', '94178', 5,
  758.  'Jan  9 1990 12:00:00:000AM', 102, 4700.00 )
  759.  
  760. go
  761.  
  762. insert into EMPLOYEE values ( 122, 405, 'Affinito', 'Jon', '415-326-515 ',
  763.  '639 Schoman Ave.', 'Woodside', 'CA', '94239', 5,
  764.  'May  1 1988 12:00:00:000AM', 103, 5000.00 )
  765.  
  766. go
  767.  
  768. insert into EMPLOYEE values ( 123, 400, 'Liu', 'Tom', '415-321-1766',
  769.  '3342 Main St.', 'Sunnyvale', 'CA', '94219', 5,
  770.  'Jan  6 1989 12:00:00:000AM', 103, 4700.00 )
  771.  
  772. go
  773.  
  774. insert into EMPLOYEE values ( 124, 410, 'Walton', 'Jennifer', '415-324-4697',
  775.  '2673 France St.', 'Santa Clara', 'CA', '94157', 4,
  776.  'Jan 18 1990 12:00:00:000AM', 103, 5700.00 )
  777.  
  778. go
  779. insert into EMPLOYEE values ( 125, 101,'Page', 'Paul', '415-320-8100',
  780.  '2754 Johnson Ave.', 'Redwood City', 'CA', '94170', 4,
  781.  'Aug 18 1992 12:00:00:000AM', 101, 4200.00 )
  782.  
  783. go
  784.  
  785. insert into EMPLOYEE values ( 126, 105, 'Seng', 'Paul', '415-320-7249',
  786.  '4876 High Road', 'Half Moon Bay', 'CA', '94171', 6,
  787.  'Jul  2 1988 12:00:00:000AM', 101, 5000.00 )
  788.  
  789. go
  790.  
  791. insert into EMPLOYEE values ( 127, 101, 'Nelson', 'Andrew', '415-323-1072',
  792.  '562 Knuth Circle', 'Palo Alto', 'CA', '94164', 11,
  793.  'Nov 14 1988 12:00:00:000AM', 101, 5300.00 )
  794.  
  795. go
  796.  
  797. insert into EMPLOYEE values ( 128, 252, 'Tucker', 'Karen', '415-323-1180',
  798.  '1952 Lutece St.', 'Atherton', 'CA', '94195', 5,
  799.  'Nov 12 1989 12:00:00:000AM', 102, 5700.00 )
  800.  
  801. go
  802.  
  803. insert into EMPLOYEE values ( 129, 410, 'Tavana', 'Jim', '415-321-4763',
  804.  '7067 Broad Road', 'Woodside', 'CA', '94236', 4,
  805.  'May  5 1992 12:00:00:000AM', 103, 5500.00 )
  806.  
  807. go
  808.  
  809. insert into EMPLOYEE values ( 130, 250,'Paquette', 'Satch', '415-326-4537',
  810.  '6972 York Road', 'Pacific Heights', 'CA', '94158', 5,
  811.  'Apr 27 1992 12:00:00:000AM', 102, 4800.00 )
  812.  
  813. go
  814.  
  815. insert into EMPLOYEE values ( 131, 350, 'Egner', 'Andy', '415-322-8602',
  816.  '4106 Poplar St.', 'Redwood City', 'CA', '94246', 7,
  817.  'Sep  3 1990 12:00:00:000AM', 107, 5700.00 )
  818.  
  819. go
  820.  
  821. insert into EMPLOYEE values ( 132, 104, 'Page', 'Opal', '415-323-4670',
  822.  '859 Poplar St.', 'Redwood City', 'CA', '94218', 6,
  823.  'Mar 27 1989 12:00:00:000AM', 101, 5300.00 )
  824.  
  825. go
  826.  
  827. insert into EMPLOYEE values ( 133, 203, 'Bay', 'Rosalie', '415-320-3763',
  828.  '6535 Juneberry Ave.', 'Mountain View', 'CA', '94243', 4,
  829.  'Feb  5 1992 12:00:00:000AM', 102, 4300.00 )
  830.  
  831. go
  832.  
  833. insert into EMPLOYEE values ( 134, 300, 'Fisk', 'George', '415-326-4655',
  834.  '4346 Connell Circle', 'Atherton', 'CA', '94211', 3,
  835.  'May  1 1991 12:00:00:000AM', 107, 5700.00 )
  836.  
  837. go
  838.  
  839. insert into EMPLOYEE values ( 135, 252,'Hecker', 'Junko', '415-321-7489',
  840.  '3930 York Ave.', 'Redwood City', 'CA', '94178', 5,
  841.  'Jan 24 1988 12:00:00:000AM', 102, 4700.00 )
  842.  
  843. go
  844.  
  845. insert into EMPLOYEE values ( 136, 101, 'Walsh', 'Guiseppe', '415-328-2963',
  846.  '1209 High Road', 'Atherton', 'CA', '94172', 10,
  847.  'Nov 28 1992 12:00:00:000AM', 101, 4200.00 )
  848.  
  849. go
  850.  
  851. insert into EMPLOYEE values ( 137, 105, 'Davidson', 'Cary', '415-322-7699',
  852.  '4773 York St.', 'Santa Clara', 'CA', '94160', 3,
  853.  'May 23 1989 12:00:00:000AM', 101, 5600.00 )
  854.  
  855. go
  856.  
  857. insert into EMPLOYEE values ( 138, 250, 'Burt', 'Elida', '415-324-444 ',
  858.  '939 Middlefield St.', 'Santa Clara', 'CA', '94232', 5,
  859.  'Apr  6 1988 12:00:00:000AM', 102, 4500.00 )
  860.  
  861. go
  862.  
  863. insert into EMPLOYEE values ( 139, 900, 'Kelleher', 'Leonard', '415-328-569 ',
  864.  '3481 Knox St.', 'Palo Alto', 'CA', '94246', 12,
  865.  'Jul 27 1990 12:00:00:000AM', 109, 4600.00 )
  866.  
  867. go
  868.  
  869. insert into EMPLOYEE values ( 140, 203,'Henriquez', 'Dave', '415-320-6936',
  870.  '3790 Market Road', 'Belmont', 'CA', '94219', 5,
  871.  'Oct 10 1992 12:00:00:000AM', 102, 5700.00 )
  872.  
  873. go
  874.  
  875.  
  876. insert into EMPLOYEE values ( 141, 252, 'Fuster', 'Manny', '415-325-3468',
  877.  '6688 Poplar Blvd.', 'Millbrae', 'CA', '94187', 4,
  878.  'Dec 15 1990 12:00:00:000AM', 102, 5100.00 )
  879.  
  880. go
  881.  
  882. insert into EMPLOYEE values ( 142, 104, 'Cleary', 'Kathi', '415-320-3912',
  883.  '2746 Schoman St.', 'Redwood City', 'CA', '94150', 11,
  884.  'Nov 23 1991 12:00:00:000AM', 101, 5100.00 )
  885.  
  886. go
  887.  
  888. insert into EMPLOYEE values ( 143, 350, 'Moore', 'Debra', '415-326-5087',
  889.  '4126 Lutece Ave.', 'San Jose', 'CA', '94237', 7,
  890.  'Apr  4 1991 12:00:00:000AM', 107, 5000.00 )
  891.  
  892. go
  893.  
  894. insert into EMPLOYEE values ( 144, 100, 'Hopkins', 'Chris', '415-321-8620',
  895.  '1482 Elm Ave.', 'Oakland', 'CA', '94198', 7,
  896.  'Aug 13 1991 12:00:00:000AM', 101, 5300.00 )
  897.  
  898. go
  899.  
  900. insert into EMPLOYEE values ( 145, 204,'Self', 'Jack', '415-325-767 ',
  901.  '7044 Walnut Road', 'Half Moon Bay', 'CA', '94164', 4,
  902.  'Nov  5 1990 12:00:00:000AM', 102, 5500.00 )
  903.  
  904. go
  905.  
  906. insert into EMPLOYEE values ( 146, 500, 'Cerbone', 'Mark', '415-322-2943',
  907.  '7137 Juneberry Road', 'San Francisco', 'CA', '94172', 3,
  908.  'May 13 1991 12:00:00:000AM', 106, 4300.00 )
  909.  
  910. go
  911.  
  912. insert into EMPLOYEE values ( 147, 202, 'Ralston', 'Anne', '415-323-4177',
  913.  '3599 Beech Ave.', 'Palo Alto', 'CA', '94169', 5,
  914.  'Jul 20 1991 12:00:00:000AM', 102, 5000.00 )
  915.  
  916. go
  917.  
  918. insert into EMPLOYEE values ( 148, 250, 'Henry', 'John', '415-322-5562',
  919.  '7645 Lancaster Ave.', 'Belmont', 'CA', '94231', 5,
  920.  'Jan 14 1991 12:00:00:000AM', 102, 4500.00 )
  921.  
  922. go
  923.  
  924. insert into EMPLOYEE values ( 149, 200, 'Kinney', 'Alex', '415-327-8472',
  925.  '4044 Hanson St.', 'Mountain View', 'CA', '94239', 6,
  926.  'Sep 24 1990 12:00:00:000AM', 102, 5300.00 )
  927.  
  928. go
  929.  
  930. insert into EMPLOYEE values ( 150, 420,'Moore', 'James', '415-325-4316',
  931.  '6425 Broad Ave.', 'Redwood City', 'CA', '94244', 5,
  932.  'Aug 23 1989 12:00:00:000AM', 103, 5600.00 )
  933.  
  934. go
  935.  
  936.  
  937. insert into EMPLOYEE values ( 151, 105, 'Nguyen', 'Jorg', '415-322-2523',
  938.  '5531 Knuth St.', 'Pacific Heights', 'CA', '94192', 11,
  939.  'Feb 27 1990 12:00:00:000AM', 101, 5600.00 )
  940.  
  941. go
  942.  
  943. insert into EMPLOYEE values ( 152, 330, 'Veasey', 'David', '415-320-1483',
  944.  '3999 Juneberry Road', 'Belmont', 'CA', '94177', 10,
  945.  'Dec  8 1992 12:00:00:000AM', 107, 4400.00 )
  946.  
  947. go
  948.  
  949. insert into EMPLOYEE values ( 153, 350, 'Morse', 'Guy', '415-328-6708',
  950.  '1276 Middlefield Ave.', 'Atherton', 'CA', '94234', 7,
  951.  'Apr  4 1991 12:00:00:000AM', 107, 4000.00 )
  952.  
  953. go
  954.  
  955. insert into EMPLOYEE values ( 154, 350, 'Fordam', 'Donna', '415-320-2744',
  956.  '7712 Chowen St.', 'Oakland', 'CA', '94215', 7,
  957.  'Mar 21 1990 12:00:00:000AM', 107, 4800.00 )
  958.  
  959. go
  960.  
  961. insert into EMPLOYEE values ( 155, 320,'Walsh', 'James', '415-323-7264',
  962.  '3532 Anderson St.', 'San Francisco', 'CA', '94179', 10,
  963.  'Aug 23 1990 12:00:00:000AM', 107, 4200.00 )
  964.  
  965. go
  966.  
  967. insert into EMPLOYEE values ( 156, 420, 'Fukasawa', 'Ben', '415-327-4471',
  968.  '5337 Kristen Blvd.', 'Palo Alto', 'CA', '94207', 5,
  969.  'Sep 23 1989 12:00:00:000AM', 103, 4300.00 )
  970.  
  971. go
  972.  
  973. insert into EMPLOYEE values ( 157, 200, 'Yu', 'Martin', '415-321-9787',
  974.  '7580 High Ave.', 'Palo Alto', 'CA', '94186', 3,
  975.  'Dec 26 1991 12:00:00:000AM', 102, 4800.00 )
  976.  
  977. go
  978.  
  979. insert into EMPLOYEE values ( 158, 201, 'Hodor', 'Lee', '415-328-151 ',
  980.  '2669 Sparrow Ave.', 'Belmont', 'CA', '94194', 6,
  981.  'Feb 22 1988 12:00:00:000AM', 102, 4000.00 )
  982.  
  983. go
  984.  
  985. insert into EMPLOYEE values ( 159, 203, 'Naroff', 'Unjieng,', '415-322-8693',
  986.  '5176 Lincoln St.', 'San Francisco', 'CA', '94168', 5,
  987.  'Jan  5 1990 12:00:00:000AM', 102, 5300.00 )
  988.  
  989. go
  990.  
  991. insert into EMPLOYEE values ( 160, 330,'Lee', 'Eric', '415-326-9238',
  992.  '3234 Connell St.', 'San Francisco', 'CA', '94198', 3,
  993.  'Jan 22 1989 12:00:00:000AM', 107, 4900.00 )
  994.  
  995. go
  996.  
  997. insert into EMPLOYEE values ( 161, 330, 'Barber', 'Bart', '415-320-7854',
  998.  '7277 Shorebird St.', 'Half Moon Bay', 'CA', '94243', 10,
  999.  'Jul 18 1991 12:00:00:000AM', 107, 4200.00 )
  1000.  
  1001. go
  1002.  
  1003. insert into EMPLOYEE values ( 162, 900, 'Patel', 'Jim', '415-322-3915',
  1004.  '2767 Drew St.', 'Sunnyvale', 'CA', '94214', 12,
  1005.  'Jul 12 1992 12:00:00:000AM', 109, 5400.00 )
  1006.  
  1007. go
  1008.  
  1009. insert into EMPLOYEE values ( 163, 900, 'Vergnot', 'Glenn', '415-324-287 ',
  1010.  '6882 Connell St.', 'San Francisco', 'CA', '94236', 3,
  1011.  'Aug 18 1991 12:00:00:000AM', 109, 4300.00 )
  1012.  
  1013. go
  1014.  
  1015. insert into EMPLOYEE values ( 164, 104, 'Hertz', 'Christian', '415-321-3157',
  1016.  '1884 Pope St.', 'San Jose', 'CA', '94208', 3,
  1017.  'Oct 12 1989 12:00:00:000AM', 101, 4000.00 )
  1018.  
  1019. go
  1020.  
  1021. insert into EMPLOYEE values ( 165, 350,'Etcheverry', 'Jon', '415-328-714 ',
  1022.  '2996 Lutece St.', 'Belmont', 'CA', '94216', 7,
  1023.  'Feb 21 1988 12:00:00:000AM', 107, 4200.00 )
  1024.  
  1025. go
  1026.  
  1027. insert into EMPLOYEE values ( 166, 101, 'Burt', 'Alice', '415-320-3192',
  1028.  '5114 Lancaster St.', 'Pacific Heights', 'CA', '94241', 3,
  1029.  'Oct 14 1992 12:00:00:000AM', 101, 5200.00 )
  1030.  
  1031. go
  1032.  
  1033. insert into EMPLOYEE values ( 167, 350, 'Novak', 'Russ', '415-326-281 ',
  1034.  '6478 Spruce Trail', 'Mountain View', 'CA', '94185', 7,
  1035.  'Apr 13 1989 12:00:00:000AM', 107, 4900.00 )
  1036.  
  1037. go
  1038.  
  1039. insert into EMPLOYEE values ( 168, 202, 'Francis', 'Vicki', '415-321-8842',
  1040.  '2391 Broadway Ave.', 'Redwood City', 'CA', '94220', 5,
  1041.  'Jul 24 1991 12:00:00:000AM', 102, 4200.00 )
  1042.  
  1043. go
  1044.  
  1045. insert into EMPLOYEE values ( 169, 201, 'Jochims', 'Hal', '415-324-8628',
  1046.  '6030 State Ave.', 'Palo Alto', 'CA', '94217', 6,
  1047.  'Jul 21 1992 12:00:00:000AM', 102, 4200.00 )
  1048.  
  1049. go
  1050.  
  1051. insert into EMPLOYEE values ( 170, 900,'Tucker', 'Tom', '415-328-2067',
  1052.  '3258 Wallace St.', 'Mountain View', 'CA', '94246', 12,
  1053.  'Mar 18 1988 12:00:00:000AM', 109, 4600.00 )
  1054.  
  1055. go
  1056.  
  1057.  
  1058. insert into EMPLOYEE values ( 171, 252, 'Herald', 'Ellen', '415-321-1238',
  1059.  '674 Addams Road', 'San Francisco', 'CA', '94228', 5,
  1060.  'Feb  5 1990 12:00:00:000AM', 102, 5300.00 )
  1061.  
  1062. go
  1063.  
  1064. insert into EMPLOYEE values ( 172, 405, 'Anthony', 'Mitch', '415-322-3205',
  1065.  '5062 Hanson Trail', 'Half Moon Bay', 'CA', '94218', 5,
  1066.  'May 26 1991 12:00:00:000AM', 103, 4600.00 )
  1067.  
  1068. go
  1069.  
  1070. insert into EMPLOYEE values ( 173, 350, 'Fuster', 'Lane', '415-320-9534',
  1071.  '7796 Main Ave.', 'Sunnyvale', 'CA', '94163', 7,
  1072.  'Jan 25 1988 12:00:00:000AM', 107, 4300.00 )
  1073.  
  1074. go
  1075.  
  1076. insert into EMPLOYEE values ( 174, 350, 'Dunham', 'Jim', '415-320-691 ',
  1077.  '3866 Lancaster St.', 'Mountain View', 'CA', '94190', 7,
  1078.  'Jul  9 1988 12:00:00:000AM', 107, 4700.00 )
  1079.  
  1080. go
  1081.  
  1082. insert into EMPLOYEE values ( 175, 300,'Ferrante', 'Kristen', '415-324-6344',
  1083.  '6086 Broad Blvd.', 'Sunnyvale', 'CA', '94216', 4,
  1084.  'Apr 14 1990 12:00:00:000AM', 107, 5100.00 )
  1085.  
  1086. go
  1087.  
  1088. insert into EMPLOYEE values ( 176, 202, 'Manross', 'Ken', '415-325-8979',
  1089.  '2452 Lincoln Blvd.', 'Pacific Heights', 'CA', '94228', 5,
  1090.  'Feb 18 1988 12:00:00:000AM', 102, 5600.00 )
  1091.  
  1092. go
  1093.  
  1094. insert into EMPLOYEE values ( 177, 105, 'Dahlbeck', 'Olivier', '415-326-2780',
  1095.  '3510 Wallace Trail', 'Millbrae', 'CA', '94187', 5,
  1096.  'Mar 12 1988 12:00:00:000AM', 101, 4600.00 )
  1097.  
  1098. go
  1099.  
  1100. insert into EMPLOYEE values ( 178, 400, 'Meyer', 'Bonnie', '415-324-140 ',
  1101.  '1885 Kristen St.', 'Belmont', 'CA', '94155', 5,
  1102.  'Jan 14 1991 12:00:00:000AM', 103, 4900.00 )
  1103.  
  1104. go
  1105.  
  1106. insert into EMPLOYEE values ( 179, 203, 'Lappin', 'Denise', '415-320-2072',
  1107.  '6441 Spruce St.', 'Palo Alto', 'CA', '94198', 5,
  1108.  'May 20 1992 12:00:00:000AM', 102, 5200.00 )
  1109.  
  1110. go
  1111.  
  1112. insert into EMPLOYEE values ( 180, 100,'Magennis', 'Jerry', '415-320-3085',
  1113.  '2457 Chowen St.', 'Redwood City', 'CA', '94224', 8,
  1114.  'Dec 28 1989 12:00:00:000AM', 101, 4300.00 )
  1115.  
  1116. go
  1117.  
  1118.  
  1119. insert into EMPLOYEE values ( 181, 202, 'Law', 'Mike', '415-320-4077',
  1120.  '1683 Roberts Blvd.', 'Oakland', 'CA', '94174', 5,
  1121.  'Jul 13 1990 12:00:00:000AM', 102, 4700.00 )
  1122.  
  1123. go
  1124.  
  1125. insert into EMPLOYEE values ( 182, 350, 'Jackson', 'Thomas', '415-320-5390',
  1126.  '3279 Hanson St.', 'Belmont', 'CA', '94177', 7,
  1127.  'Jun  8 1991 12:00:00:000AM', 107, 5300.00 )
  1128.  
  1129. go
  1130.  
  1131. insert into EMPLOYEE values ( 183, 320, 'Rokovich', 'Dung', '415-320-7176',
  1132.  '4656 Anderson St.', 'Palo Alto', 'CA', '94210', 10,
  1133.  'Jun 26 1991 12:00:00:000AM', 107, 5300.00 )
  1134.  
  1135. go
  1136.  
  1137. insert into EMPLOYEE values ( 184, 105, 'White', 'Curits', '415-320-6492',
  1138.  '175 Kristen St.', 'Belmont', 'CA', '94180', 9,
  1139.  'Jan 25 1989 12:00:00:000AM', 101, 5000.00 )
  1140.  
  1141. go
  1142.  
  1143. insert into EMPLOYEE values ( 185, 420,'Yee', 'Peggy', '415-328-1314',
  1144.  '4885 France Ave.', 'Half Moon Bay', 'CA', '94239', 4,
  1145.  'Aug 16 1990 12:00:00:000AM', 103, 4600.00 )
  1146.  
  1147. go
  1148.  
  1149. insert into EMPLOYEE values ( 186, 900, 'Derrickson', 'Joy', '415-327-5048',
  1150.  '5708 Elm Ave.', 'Redwood City', 'CA', '94231', 12,
  1151.  'Aug 15 1988 12:00:00:000AM', 109, 4700.00 )
  1152.  
  1153. go
  1154.  
  1155. insert into EMPLOYEE values ( 187, 330, 'Steenkamer', 'Jerry', '415-324-4072',
  1156.  '3861 Washington St.', 'San Jose', 'CA', '94238', 4,
  1157.  'Oct  6 1991 12:00:00:000AM', 107, 5200.00 )
  1158.  
  1159. go
  1160.  
  1161. insert into EMPLOYEE values ( 188, 252, 'Sridhara', 'Dieter', '415-321-5690',
  1162.  '3025 Lancaster Blvd.', 'Atherton', 'CA', '94233', 5,
  1163.  'Jun  7 1988 12:00:00:000AM', 102, 4900.00 )
  1164.  
  1165. go
  1166.  
  1167. insert into EMPLOYEE values ( 189, 100, 'Mikkelsen', 'Rob', '415-321-6689',
  1168.  '4027 Shorebird Ave.', 'Woodside', 'CA', '94188', 9,
  1169.  'May 12 1991 12:00:00:000AM', 101, 4400.00 )
  1170.  
  1171. go
  1172.  
  1173. insert into EMPLOYEE values ( 190, 500,'Yee', 'Kollivakkam', '415-324-1358',
  1174.  '3271 Knuth St.', 'Palo Alto', 'CA', '94217', 4,
  1175.  'Jan 10 1988 12:00:00:000AM', 106, 4800.00 )
  1176.  
  1177. go
  1178.  
  1179.  
  1180. insert into EMPLOYEE values ( 191, 204, 'Guerrero', 'Stephen', '415-321-6736',
  1181.  '6368 Anderson St.', 'Palo Alto', 'CA', '94173', 5,
  1182.  'Jun  3 1992 12:00:00:000AM', 102, 4600.00 )
  1183.  
  1184. go
  1185.  
  1186. insert into EMPLOYEE values ( 192, 420, 'Page', 'Michael', '415-321-1199',
  1187.  '7713 Middlefield Ave.', 'Atherton', 'CA', '94194', 5,
  1188.  'Nov 23 1988 12:00:00:000AM', 103, 4500.00 )
  1189.  
  1190. go
  1191.  
  1192. insert into EMPLOYEE values ( 193, 350, 'McClung', 'Chad', '415-327-1329',
  1193.  '2902 Connell Ave.', 'Sunnyvale', 'CA', '94181', 7,
  1194.  'Aug 25 1988 12:00:00:000AM', 107, 4200.00 )
  1195.  
  1196. go
  1197.  
  1198. insert into EMPLOYEE values ( 194, 104, 'Perka', 'Sam', '415-326-1256',
  1199.  '61 Knox St.', 'Santa Clara', 'CA', '94191', 9,
  1200.  'Nov 23 1988 12:00:00:000AM', 101, 4900.00 )
  1201.  
  1202. go
  1203.  
  1204. insert into EMPLOYEE values ( 195, 420, 'Sickinghe', 'Sherman', '415-325-2233',
  1205.  '4865 France St.', 'Atherton', 'CA', '94207', 5,
  1206.  'Jul 19 1989 12:00:00:000AM', 103, 4500.00 )
  1207.  
  1208. go
  1209.  
  1210. insert into EMPLOYEE values ( 196, 250, 'Welch', 'Robin', '415-328-1833',
  1211.  '7631 Knox Road', 'Mountain View', 'CA', '94153', 5,
  1212.  'Oct 21 1991 12:00:00:000AM', 102, 4100.00 )
  1213.  
  1214. go
  1215.  
  1216. insert into EMPLOYEE values ( 197, 105, 'Nardin', 'Larry', '415-321-2064',
  1217.  '6179 Main St.', 'Tiberon', 'CA', '94157', 8,
  1218.  'Dec 13 1992 12:00:00:000AM', 101, 4600.00 )
  1219.  
  1220. go
  1221.  
  1222. insert into EMPLOYEE values ( 198, 100, 'Zamarripa', 'Drew', '415-320-2956',
  1223.  '6542 State St.', 'Pacific Heights', 'CA', '94163', 10,
  1224.  'Jul 18 1991 12:00:00:000AM', 101, 5400.00 )
  1225.  
  1226. go
  1227.  
  1228. insert into EMPLOYEE values ( 199, 500, 'Edwards', 'John', '415-328-186 ',
  1229.  '1318 Chowen St.', 'Mountain View', 'CA', '94198', 4,
  1230.  'Jun 12 1989 12:00:00:000AM', 106, 5100.00 )
  1231.  
  1232. go
  1233.  
  1234. insert into EMPLOYEE values ( 200, 202,'Schrey', 'Scott', '415-323-3258',
  1235.  '4033 Knox Road', 'Woodside', 'CA', '94206', 5,
  1236.  'Nov  2 1989 12:00:00:000AM', 102, 4000.00 )
  1237.  
  1238. go
  1239.  
  1240.  
  1241. insert into EMPLOYEE values ( 201, 320, 'Jackson', 'Mike', '415-323-8048',
  1242.  '6956 Spruce St.', 'Mountain View', 'CA', '94187', 10,
  1243.  'Apr 14 1992 12:00:00:000AM', 107, 4700.00 )
  1244.  
  1245. go
  1246.  
  1247. insert into EMPLOYEE values ( 202, 252, 'Mostofi', 'Richard', '415-324-3019',
  1248.  '1704 Lancaster Road', 'Palo Alto', 'CA', '94206', 5,
  1249.  'Aug 12 1989 12:00:00:000AM', 102, 4500.00 )
  1250.  
  1251. go
  1252.  
  1253. insert into EMPLOYEE values ( 203, 410, 'Bonidy', 'Salvatore', '415-322-582 ',
  1254.  '3116 Knuth Ave.', 'Half Moon Bay', 'CA', '94245', 5,
  1255.  'Apr 14 1992 12:00:00:000AM', 103, 5200.00 )
  1256.  
  1257. go
  1258.  
  1259. insert into EMPLOYEE values ( 204, 101, 'Janssen', 'Gene', '415-327-7614',
  1260.  '648 Washington Way', 'San Jose', 'CA', '94175', 8,
  1261.  'Apr 17 1988 12:00:00:000AM', 1, 4300.00 )
  1262.  
  1263. go
  1264.  
  1265. insert into EMPLOYEE values ( 205, 252,'Scott', 'Ken', '415-325-3118',
  1266.  '5936 Strand Road', 'Palo Alto', 'CA', '94150', 5,
  1267.  'Jul 13 1989 12:00:00:000AM', 102, 5700.00 )
  1268.  
  1269. go
  1270.  
  1271. insert into EMPLOYEE values ( 206, 101, 'Droulers', 'Matt', '415-322-213 ',
  1272.  '4617 Roberts Blvd.', 'Sunnyvale', 'CA', '94232', 7,
  1273.  'Nov 23 1990 12:00:00:000AM', 101, 4400.00 )
  1274.  
  1275. go
  1276.  
  1277. insert into EMPLOYEE values ( 207, 202, 'Pinkerton', 'Matt', '415-324-6350',
  1278.  '7803 Sparrow Road', 'Woodside', 'CA', '94245', 4,
  1279.  'Jul  6 1991 12:00:00:000AM', 102, 5600.00 )
  1280.  
  1281. go
  1282.  
  1283. insert into EMPLOYEE values ( 208, 202, 'Campetelli', 'Margaret', '415-321-2664',
  1284.  '7435 Strand Blvd.', 'Redwood City', 'CA', '94200', 5,
  1285.  'Sep 19 1992 12:00:00:000AM', 102, 5200.00 )
  1286.  
  1287. go
  1288.  
  1289. insert into EMPLOYEE values ( 209, 410, 'Lee', 'Jerry', '415-325-9499',
  1290.  '1484 Adams St.', 'Tiberon', 'CA', '94191', 5,
  1291.  'Jan 11 1991 12:00:00:000AM', 103, 5000.00 )
  1292.  
  1293. go
  1294.  
  1295. insert into EMPLOYEE values ( 210, 250,'Bucher', 'Fred', '415-323-8440',
  1296.  '7048 Knox Road', 'Palo Alto', 'CA', '94243', 3,
  1297.  'May 18 1988 12:00:00:000AM', 102, 4000.00 )
  1298.  
  1299. go
  1300.  
  1301.  
  1302. insert into EMPLOYEE values ( 211, 400, 'Farah', 'David', '415-322-2744',
  1303.  '1691 Pelican St.', 'San Francisco', 'CA', '94242', 5,
  1304.  'Mar 17 1988 12:00:00:000AM', 103, 4600.00 )
  1305.  
  1306. go
  1307.  
  1308. insert into EMPLOYEE values ( 212, 350, 'Avenell', 'Perry', '415-328-1319',
  1309.  '5910 Lutece Road', 'Palo Alto', 'CA', '94172', 7,
  1310.  'May  9 1992 12:00:00:000AM', 107, 5500.00 )
  1311.  
  1312. go
  1313.  
  1314. insert into EMPLOYEE values ( 213, 200, 'Butler', 'Mike', '415-327-8235',
  1315.  '5872 Regent Ave.', 'Palo Alto', 'CA', '94226', 11,
  1316.  'May  5 1990 12:00:00:000AM', 102, 5400.00 )
  1317.  
  1318. go
  1319.  
  1320. insert into EMPLOYEE values ( 214, 405, 'Graves', 'David', '415-323-6928',
  1321.  '5706 Shorebird Road', 'Sunnyvale', 'CA', '94173', 5,
  1322.  'Nov 14 1992 12:00:00:000AM', 103, 4100.00 )
  1323.  
  1324. go
  1325.  
  1326. insert into EMPLOYEE values ( 215, 350,'Hourvitz', 'Keith', '415-326-7210',
  1327.  '1092 Pelican St.', 'Sunnyvale', 'CA', '94185', 7,
  1328.  'Mar  6 1989 12:00:00:000AM', 107, 5400.00 )
  1329.  
  1330. go
  1331.  
  1332. insert into EMPLOYEE values ( 216, 105, 'Messer', 'Tushar', '415-322-2698',
  1333.  '7117 Drew Road', 'Tiberon', 'CA', '94201', 3,
  1334.  'Feb 21 1990 12:00:00:000AM', 101, 4800.00 )
  1335.  
  1336. go
  1337.  
  1338. insert into EMPLOYEE values ( 217, 101, 'Bumgarner', 'Kristen', '415-321-2840',
  1339.  '2039 Adams St.', 'Belmont', 'CA', '94174', 9,
  1340.  'Apr 17 1988 12:00:00:000AM', 101, 5600.00 )
  1341.  
  1342. go
  1343.  
  1344. insert into EMPLOYEE values ( 218, 201, 'Derrickson', 'Ben', '415-322-5122',
  1345.  '513 Connell St.', 'Tiberon', 'CA', '94176', 6,
  1346.  'Aug 15 1988 12:00:00:000AM', 102, 4900.00 )
  1347.  
  1348. go
  1349.  
  1350. insert into EMPLOYEE values ( 219, 101, 'Rushin', 'Mark', '415-323-5883',
  1351.  '5391 Addams St.', 'Redwood City', 'CA', '94221', 6,
  1352.  'Oct 14 1989 12:00:00:000AM', 101, 4900.00 )
  1353.  
  1354. go
  1355.  
  1356. insert into EMPLOYEE values ( 220, 100,'Graffagnino', 'Susan', '415-323-3617',
  1357.  '5999 Walnut Circle', 'Tiberon', 'CA', '94239', 7,
  1358.  'Jan  6 1992 12:00:00:000AM', 101, 4400.00 )
  1359.  
  1360. go
  1361.  
  1362.  
  1363. insert into EMPLOYEE values ( 221, 202, 'Gibbons', 'Jim', '415-326-9370',
  1364.  '2305 Emerson St.', 'Millbrae', 'CA', '94188', 4,
  1365.  'Nov 13 1988 12:00:00:000AM', 102, 4700.00 )
  1366.  
  1367. go
  1368.  
  1369. insert into EMPLOYEE values ( 222, 101, 'Wasmeier', 'Ken', '415-326-6257',
  1370.  '7802 Schoman St.', 'Atherton', 'CA', '94159', 8,
  1371.  'Nov  5 1990 12:00:00:000AM', 101, 5300.00 )
  1372.  
  1373. go
  1374.  
  1375. insert into EMPLOYEE values ( 223, 405, 'Joseph', 'Ralph', '415-325-6536',
  1376.  '3635 France St.', 'San Jose', 'CA', '94199', 5,
  1377.  'May 15 1989 12:00:00:000AM', 103, 4100.00 )
  1378.  
  1379. go
  1380.  
  1381. insert into EMPLOYEE values ( 224, 201, 'Fried', 'Joel', '415-320-9111',
  1382.  '1493 Roberts St.', 'Palo Alto', 'CA', '94196', 6,
  1383.  'Apr  2 1989 12:00:00:000AM', 102, 5200.00 )
  1384.  
  1385. go
  1386.  
  1387. insert into EMPLOYEE values ( 225, 410,'Blumenfeld', 'Linda', '415-321-2818',
  1388.  '4373 Roberts St.', 'Mountain View', 'CA', '94195', 5,
  1389.  'Jun 11 1991 12:00:00:000AM', 103, 5700.00 )
  1390.  
  1391. go
  1392.  
  1393. insert into EMP_PHOTO(EMP_ID) values (101)
  1394. insert into EMP_PHOTO(EMP_ID) values (102)
  1395. insert into EMP_PHOTO(EMP_ID) values (103)
  1396. insert into EMP_PHOTO(EMP_ID) values (104)
  1397. insert into EMP_PHOTO(EMP_ID) values (105)
  1398. insert into EMP_PHOTO(EMP_ID) values (106)
  1399. insert into EMP_PHOTO(EMP_ID) values (107)
  1400. insert into EMP_PHOTO(EMP_ID) values (108)
  1401. insert into EMP_PHOTO(EMP_ID) values (109)
  1402. insert into EMP_PHOTO(EMP_ID) values (110)
  1403. insert into EMP_PHOTO(EMP_ID) values (111)
  1404. insert into EMP_PHOTO(EMP_ID) values (112)
  1405. insert into EMP_PHOTO(EMP_ID) values (113)
  1406. insert into EMP_PHOTO(EMP_ID) values (114)
  1407. insert into EMP_PHOTO(EMP_ID) values (115)
  1408. insert into EMP_PHOTO(EMP_ID) values (116)
  1409. insert into EMP_PHOTO(EMP_ID) values (117)
  1410. insert into EMP_PHOTO(EMP_ID) values (118)
  1411. insert into EMP_PHOTO(EMP_ID) values (119)
  1412. insert into EMP_PHOTO(EMP_ID) values (120)
  1413. insert into EMP_PHOTO(EMP_ID) values (121)
  1414. insert into EMP_PHOTO(EMP_ID) values (122)
  1415. insert into EMP_PHOTO(EMP_ID) values (123)
  1416. insert into EMP_PHOTO(EMP_ID) values (124)
  1417. insert into EMP_PHOTO(EMP_ID) values (125)
  1418. insert into EMP_PHOTO(EMP_ID) values (126)
  1419. insert into EMP_PHOTO(EMP_ID) values (127)
  1420. insert into EMP_PHOTO(EMP_ID) values (128)
  1421. insert into EMP_PHOTO(EMP_ID) values (129)
  1422. insert into EMP_PHOTO(EMP_ID) values (130)
  1423. insert into EMP_PHOTO(EMP_ID) values (131)
  1424. insert into EMP_PHOTO(EMP_ID) values (132)
  1425. insert into EMP_PHOTO(EMP_ID) values (133)
  1426. insert into EMP_PHOTO(EMP_ID) values (134)
  1427. insert into EMP_PHOTO(EMP_ID) values (135)
  1428. insert into EMP_PHOTO(EMP_ID) values (136)
  1429. insert into EMP_PHOTO(EMP_ID) values (137)
  1430. insert into EMP_PHOTO(EMP_ID) values (138)
  1431. insert into EMP_PHOTO(EMP_ID) values (139)
  1432. insert into EMP_PHOTO(EMP_ID) values (140)
  1433. insert into EMP_PHOTO(EMP_ID) values (141)
  1434. insert into EMP_PHOTO(EMP_ID) values (142)
  1435. insert into EMP_PHOTO(EMP_ID) values (143)
  1436. insert into EMP_PHOTO(EMP_ID) values (144)
  1437. insert into EMP_PHOTO(EMP_ID) values (145)
  1438. insert into EMP_PHOTO(EMP_ID) values (146)
  1439. insert into EMP_PHOTO(EMP_ID) values (147)
  1440. insert into EMP_PHOTO(EMP_ID) values (148)
  1441. insert into EMP_PHOTO(EMP_ID) values (149)
  1442. insert into EMP_PHOTO(EMP_ID) values (150)
  1443. insert into EMP_PHOTO(EMP_ID) values (151)
  1444. insert into EMP_PHOTO(EMP_ID) values (152)
  1445. insert into EMP_PHOTO(EMP_ID) values (153)
  1446. insert into EMP_PHOTO(EMP_ID) values (154)
  1447. insert into EMP_PHOTO(EMP_ID) values (155)
  1448. insert into EMP_PHOTO(EMP_ID) values (156)
  1449. insert into EMP_PHOTO(EMP_ID) values (157)
  1450. insert into EMP_PHOTO(EMP_ID) values (158)
  1451. insert into EMP_PHOTO(EMP_ID) values (159)
  1452. insert into EMP_PHOTO(EMP_ID) values (160)
  1453. insert into EMP_PHOTO(EMP_ID) values (161)
  1454. insert into EMP_PHOTO(EMP_ID) values (162)
  1455. insert into EMP_PHOTO(EMP_ID) values (163)
  1456. insert into EMP_PHOTO(EMP_ID) values (164)
  1457. insert into EMP_PHOTO(EMP_ID) values (165)
  1458. insert into EMP_PHOTO(EMP_ID) values (166)
  1459. insert into EMP_PHOTO(EMP_ID) values (167)
  1460. insert into EMP_PHOTO(EMP_ID) values (168)
  1461. insert into EMP_PHOTO(EMP_ID) values (169)
  1462. insert into EMP_PHOTO(EMP_ID) values (170)
  1463. insert into EMP_PHOTO(EMP_ID) values (171)
  1464. insert into EMP_PHOTO(EMP_ID) values (172)
  1465. insert into EMP_PHOTO(EMP_ID) values (173)
  1466. insert into EMP_PHOTO(EMP_ID) values (174)
  1467. insert into EMP_PHOTO(EMP_ID) values (175)
  1468. insert into EMP_PHOTO(EMP_ID) values (176)
  1469. insert into EMP_PHOTO(EMP_ID) values (177)
  1470. insert into EMP_PHOTO(EMP_ID) values (178)
  1471. insert into EMP_PHOTO(EMP_ID) values (179)
  1472. insert into EMP_PHOTO(EMP_ID) values (180)
  1473. insert into EMP_PHOTO(EMP_ID) values (181)
  1474. insert into EMP_PHOTO(EMP_ID) values (182)
  1475. insert into EMP_PHOTO(EMP_ID) values (183)
  1476. insert into EMP_PHOTO(EMP_ID) values (184)
  1477. insert into EMP_PHOTO(EMP_ID) values (185)
  1478. insert into EMP_PHOTO(EMP_ID) values (186)
  1479. insert into EMP_PHOTO(EMP_ID) values (187)
  1480. insert into EMP_PHOTO(EMP_ID) values (188)
  1481. insert into EMP_PHOTO(EMP_ID) values (189)
  1482. insert into EMP_PHOTO(EMP_ID) values (190)
  1483. insert into EMP_PHOTO(EMP_ID) values (191)
  1484. insert into EMP_PHOTO(EMP_ID) values (192)
  1485. insert into EMP_PHOTO(EMP_ID) values (193)
  1486. insert into EMP_PHOTO(EMP_ID) values (194)
  1487. insert into EMP_PHOTO(EMP_ID) values (195)
  1488. insert into EMP_PHOTO(EMP_ID) values (196)
  1489. insert into EMP_PHOTO(EMP_ID) values (197)
  1490. insert into EMP_PHOTO(EMP_ID) values (198)
  1491. insert into EMP_PHOTO(EMP_ID) values (199)
  1492. insert into EMP_PHOTO(EMP_ID) values (200)
  1493. insert into EMP_PHOTO(EMP_ID) values (201)
  1494. insert into EMP_PHOTO(EMP_ID) values (202)
  1495. insert into EMP_PHOTO(EMP_ID) values (203)
  1496. insert into EMP_PHOTO(EMP_ID) values (204)
  1497. insert into EMP_PHOTO(EMP_ID) values (205)
  1498. insert into EMP_PHOTO(EMP_ID) values (206)
  1499. insert into EMP_PHOTO(EMP_ID) values (207)
  1500. insert into EMP_PHOTO(EMP_ID) values (208)
  1501. insert into EMP_PHOTO(EMP_ID) values (209)
  1502. insert into EMP_PHOTO(EMP_ID) values (210)
  1503. insert into EMP_PHOTO(EMP_ID) values (211)
  1504. insert into EMP_PHOTO(EMP_ID) values (212)
  1505. insert into EMP_PHOTO(EMP_ID) values (213)
  1506. insert into EMP_PHOTO(EMP_ID) values (214)
  1507. insert into EMP_PHOTO(EMP_ID) values (215)
  1508. insert into EMP_PHOTO(EMP_ID) values (216)
  1509. insert into EMP_PHOTO(EMP_ID) values (217)
  1510. insert into EMP_PHOTO(EMP_ID) values (218)
  1511. insert into EMP_PHOTO(EMP_ID) values (219)
  1512. insert into EMP_PHOTO(EMP_ID) values (220)
  1513. insert into EMP_PHOTO(EMP_ID) values (221)
  1514. insert into EMP_PHOTO(EMP_ID) values (222)
  1515. insert into EMP_PHOTO(EMP_ID) values (223)
  1516. insert into EMP_PHOTO(EMP_ID) values (224)
  1517. insert into EMP_PHOTO(EMP_ID) values (225)
  1518. go
  1519.  
  1520.  
  1521.  
  1522.  
  1523. insert into EMP_EQUIPMENT values (1100, 'NeXTstation 8/105', '984-9749', 119)
  1524. go
  1525.  
  1526. insert into EMP_EQUIPMENT values (1101, 'NeXTstation 8/105', '929-22249', 149)
  1527. go
  1528.  
  1529. insert into EMP_EQUIPMENT values (1102, 'NeXTstation Color 8/105', '397-40272', 166)
  1530. go
  1531.  
  1532. insert into EMP_EQUIPMENT values (1103, 'NeXTstation Color 16/200', '233-86445', 127)
  1533. go
  1534.  
  1535. insert into EMP_EQUIPMENT values (1104, 'NeXTstation 16/400', '207-53910', 131)
  1536. go
  1537.  
  1538. insert into EMP_EQUIPMENT values (1105, 'NeXTstation  Color Turbo 16/200', '508-67548', 147)
  1539. go
  1540.  
  1541. insert into EMP_EQUIPMENT values (1106, 'NeXTstation 16/200', '436-80755', 161)
  1542. go
  1543.  
  1544. insert into EMP_EQUIPMENT values (1107, 'NeXTstation  Color Turbo 16/200', '543-37393', 156)
  1545. go
  1546.  
  1547. insert into EMP_EQUIPMENT values (1108, 'NeXTstation 16/200', '547-30645', 218)
  1548. go
  1549.  
  1550. insert into EMP_EQUIPMENT values (1109, 'NeXTstation 8/105', '476-93085', 178)
  1551. go
  1552.  
  1553. insert into EMP_EQUIPMENT values (1110, 'NeXTDimension', '336-24689', 137)
  1554. go
  1555.  
  1556. insert into EMP_EQUIPMENT values (1111, 'NeXTstation Turbo 16/400', '549-35596', 193)
  1557. go
  1558.  
  1559. insert into EMP_EQUIPMENT values (1112, 'NeXTstation Color 8/105', '26-33143', 144)
  1560. go
  1561.  
  1562. insert into EMP_EQUIPMENT values (1113, 'NeXTstation  Color Turbo 8/105', '393-60933', 164)
  1563. go
  1564.  
  1565. insert into EMP_EQUIPMENT values (1114, 'NeXTstation Color 8/105', '748-91478', 184)
  1566. go
  1567.  
  1568. insert into EMP_EQUIPMENT values (1115, 'NeXTDimension', '754-23106', 140)
  1569. go
  1570.  
  1571. insert into EMP_EQUIPMENT values (1116, 'NeXTstation  Color Turbo 16/400', '372-28680', 152)
  1572. go
  1573.  
  1574. insert into EMP_EQUIPMENT values (1117, 'NeXTstation Color 16/400', '13-44241', 211)
  1575. go
  1576.  
  1577. insert into EMP_EQUIPMENT values (1118, 'NeXTstation  Color Turbo 16/200', '539-51330', 214)
  1578. go
  1579.  
  1580. insert into EMP_EQUIPMENT values (1119, 'NeXTstation Color 16/200', '418-68918', 103)
  1581. go
  1582.  
  1583. insert into EMP_EQUIPMENT values (1120, 'NeXTstation 16/200', '809-46727', 143)
  1584. go
  1585.  
  1586. insert into EMP_EQUIPMENT values (1121, 'NeXTstation 8/105', '279-2385', 118)
  1587. go
  1588.  
  1589. insert into EMP_EQUIPMENT values (1122, 'NeXTstation  Color Turbo 16/200', '414-69939', 179)
  1590. go
  1591.  
  1592. insert into EMP_EQUIPMENT values (1123, 'NeXTstation  Color Turbo 16/200', '796-69543', 188)
  1593. go
  1594.  
  1595. insert into EMP_EQUIPMENT values (1124, 'NeXTstation  Color Turbo 16/200', '537-89239', 154)
  1596. go
  1597.  
  1598. insert into EMP_EQUIPMENT values (1125, 'NeXTstation 16/400', '541-23964', 198)
  1599. go
  1600.  
  1601. insert into EMP_EQUIPMENT values (1126, 'NeXTstation Turbo 16/400', '178-21075', 113)
  1602. go
  1603.  
  1604. insert into EMP_EQUIPMENT values (1127, 'NeXTstation 16/200', '243-74685', 183)
  1605. go
  1606.  
  1607. insert into EMP_EQUIPMENT values (1128, 'NeXTstation 16/400', '702-51108', 138)
  1608. go
  1609.  
  1610. insert into EMP_EQUIPMENT values (1129, 'NeXTstation 16/200', '193-79563', 171)
  1611. go
  1612.  
  1613. insert into EMP_EQUIPMENT values (1130, 'NeXTstation Color 16/200', '595-86545', 160)
  1614. go
  1615.  
  1616. insert into EMP_EQUIPMENT values (1131, 'NeXTstation Color 16/200', '226-22739', 210)
  1617. go
  1618.  
  1619. insert into EMP_EQUIPMENT values (1132, 'NeXTstation Turbo 16/400', '98-6934', 204)
  1620. go
  1621.  
  1622. insert into EMP_EQUIPMENT values (1133, 'NeXTstation 16/400', '513-28929', 134)
  1623. go
  1624.  
  1625. insert into EMP_EQUIPMENT values (1134, 'NeXTstation 8/105', '349-4738', 163)
  1626. go
  1627.  
  1628. insert into EMP_EQUIPMENT values (1135, 'NeXTstation  Color Turbo 16/200', '941-66087', 132)
  1629. go
  1630.  
  1631. insert into EMP_EQUIPMENT values (1136, 'NeXTstation Color 16/400', '382-65389', 114)
  1632. go
  1633.  
  1634. insert into EMP_EQUIPMENT values (1137, 'NeXTstation 16/400', '664-62232', 117)
  1635. go
  1636.  
  1637. insert into EMP_EQUIPMENT values (1138, 'NeXTstation Color 8/105', '5-36913', 136)
  1638. go
  1639.  
  1640. insert into EMP_EQUIPMENT values (1139, 'NeXTstation Color 16/400', '370-90496', 153)
  1641. go
  1642.  
  1643. insert into EMP_EQUIPMENT values (1140, 'NeXTDimension', '984-7872', 169)
  1644. go
  1645.  
  1646. insert into EMP_EQUIPMENT values (1141, 'NeXTstation Color 16/400', '277-34231', 145)
  1647. go
  1648.  
  1649. insert into EMP_EQUIPMENT values (1142, 'NeXTstation 16/400', '753-51711', 150)
  1650. go
  1651.  
  1652. insert into EMP_EQUIPMENT values (1143, 'NeXTstation  Color Turbo 8/105', '123-7629', 155)
  1653. go
  1654.  
  1655. insert into EMP_EQUIPMENT values (1144, 'NeXTstation 16/400', '800-3038', 124)
  1656. go
  1657.  
  1658. insert into EMP_EQUIPMENT values (1145, 'NeXTstation Color 8/105', '486-77628', 180)
  1659. go
  1660.  
  1661. insert into EMP_EQUIPMENT values (1146, 'NeXTstation 8/105', '824-13576', 187)
  1662. go
  1663.  
  1664. insert into EMP_EQUIPMENT values (1147, 'NeXTstation Color 8/105', '626-42240', 209)
  1665. go
  1666.  
  1667. insert into EMP_EQUIPMENT values (1148, 'NeXTstation  Color Turbo 8/105', '781-27064', 129)
  1668. go
  1669.  
  1670. insert into EMP_EQUIPMENT values (1149, 'NeXTstation  Color Turbo 16/200', '914-13130', 162)
  1671. go
  1672.  
  1673. insert into EMP_EQUIPMENT values (1150, 'NeXTstation Turbo 16/400', '95-49295', 174)
  1674. go
  1675.  
  1676. insert into EMP_EQUIPMENT values (1151, 'NeXTstation Color 8/105', '647-96907', 221)
  1677. go
  1678.  
  1679. insert into EMP_EQUIPMENT values (1152, 'NeXTDimension', '117-87463', 224)
  1680. go
  1681.  
  1682. insert into EMP_EQUIPMENT values (1153, 'NeXTstation  Color Turbo 16/200', '670-29606', 106)
  1683. go
  1684.  
  1685. insert into EMP_EQUIPMENT values (1154, 'NeXTstation 16/400', '332-52077', 148)
  1686. go
  1687.  
  1688. insert into EMP_EQUIPMENT values (1155, 'NeXTstation Color 16/200', '852-63799', 199)
  1689. go
  1690.  
  1691. insert into EMP_EQUIPMENT values (1156, 'NeXTstation Color 8/105', '440-37613', 115)
  1692. go
  1693.  
  1694. insert into EMP_EQUIPMENT values (1157, 'NeXTstation  Color Turbo 16/400', '298-58959', 122)
  1695. go
  1696.  
  1697. insert into EMP_EQUIPMENT values (1158, 'NeXTstation  Color Turbo 8/105', '164-40348', 165)
  1698. go
  1699.  
  1700. insert into EMP_EQUIPMENT values (1159, 'NeXTstation  Color Turbo 8/105', '975-497', 151)
  1701. go
  1702.  
  1703. insert into EMP_EQUIPMENT values (1160, 'NeXTstation Color 16/200', '741-12300', 186)
  1704. go
  1705.  
  1706. insert into EMP_EQUIPMENT values (1161, 'NeXTstation 8/105', '126-40700', 135)
  1707. go
  1708.  
  1709. insert into EMP_EQUIPMENT values (1162, 'NeXTstation 16/200', '923-50658', 102)
  1710. go
  1711.  
  1712. insert into EMP_EQUIPMENT values (1163, 'NeXTstation  Color Turbo 16/200', '705-40124', 105)
  1713. go
  1714.  
  1715. insert into EMP_EQUIPMENT values (1164, 'NeXTstation Color 16/400', '985-27011', 128)
  1716. go
  1717.  
  1718. insert into EMP_EQUIPMENT values (1165, 'NeXTstation 16/400', '83-84294', 142)
  1719. go
  1720.  
  1721. insert into EMP_EQUIPMENT values (1166, 'NeXTstation 16/400', '233-32050', 215)
  1722. go
  1723.  
  1724. insert into EMP_EQUIPMENT values (1167, 'NeXTstation 16/400', '226-34036', 107)
  1725. go
  1726.  
  1727. insert into EMP_EQUIPMENT values (1168, 'NeXTDimension', '524-60536', 176)
  1728. go
  1729.  
  1730. insert into EMP_EQUIPMENT values (1169, 'NeXTstation 8/105', '104-65265', 205)
  1731. go
  1732.  
  1733. insert into EMP_EQUIPMENT values (1170, 'NeXTstation  Color Turbo 16/400', '794-54450', 222)
  1734. go
  1735.  
  1736. insert into EMP_EQUIPMENT values (1171, 'NeXTstation Color 16/200', '550-87024', 190)
  1737. go
  1738.  
  1739. insert into EMP_EQUIPMENT values (1172, 'NeXTstation 16/200', '75-57330', 175)
  1740. go
  1741.  
  1742. insert into EMP_EQUIPMENT values (1173, 'NeXTstation 16/200', '709-24372', 217)
  1743. go
  1744.  
  1745. insert into EMP_EQUIPMENT values (1174, 'NeXTstation  Color Turbo 16/200', '388-38271', 173)
  1746. go
  1747.  
  1748. insert into EMP_EQUIPMENT values (1175, 'NeXTstation 8/105', '98-76041', 197)
  1749. go
  1750.  
  1751. insert into EMP_EQUIPMENT values (1176, 'NeXTstation  Color Turbo 8/105', '767-36932', 158)
  1752. go
  1753.  
  1754. insert into EMP_EQUIPMENT values (1177, 'NeXTstation 8/105', '595-13623', 139)
  1755. go
  1756.  
  1757. insert into EMP_EQUIPMENT values (1178, 'NeXTstation 8/105', '664-82207', 104)
  1758. go
  1759.  
  1760. insert into EMP_EQUIPMENT values (1179, 'NeXTDimension', '830-38108', 225)
  1761. go
  1762.  
  1763. insert into EMP_EQUIPMENT values (1180, 'NeXTstation Color 16/200', '281-5023', 141)
  1764. go
  1765.  
  1766. insert into EMP_EQUIPMENT values (1181, 'NeXTstation  Color Turbo 16/200', '388-51896', 208)
  1767. go
  1768.  
  1769. insert into EMP_EQUIPMENT values (1182, 'NeXTDimension', '813-75150', 109)
  1770. go
  1771.  
  1772. insert into EMP_EQUIPMENT values (1183, 'NeXTstation Color 8/105', '576-43283', 112)
  1773. go
  1774.  
  1775. insert into EMP_EQUIPMENT values (1184, 'NeXTstation 16/200', '563-21410', 146)
  1776. go
  1777.  
  1778. insert into EMP_EQUIPMENT values (1185, 'NeXTstation Color 8/105', '384-26683', 219)
  1779. go
  1780.  
  1781. insert into EMP_EQUIPMENT values (1186, 'NeXTDimension', '449-97816', 157)
  1782. go
  1783.  
  1784. insert into EMP_EQUIPMENT values (1187, 'NeXTstation 8/105', '853-64862', 206)
  1785. go
  1786.  
  1787. insert into EMP_EQUIPMENT values (1188, 'NeXTstation 8/105', '621-8809', 207)
  1788. go
  1789.  
  1790. insert into EMP_EQUIPMENT values (1189, 'NeXTstation 16/200', '162-25658', 111)
  1791. go
  1792.  
  1793. insert into EMP_EQUIPMENT values (1190, 'NeXTstation Color 8/105', '621-29151', 120)
  1794. go
  1795.  
  1796. insert into EMP_EQUIPMENT values (1191, 'NeXTstation  Color Turbo 16/400', '63-38117', 192)
  1797. go
  1798.  
  1799. insert into EMP_EQUIPMENT values (1192, 'NeXTstation  Color Turbo 16/200', '704-39748', 181)
  1800. go
  1801.  
  1802. insert into EMP_EQUIPMENT values (1193, 'NeXTstation 8/105', '785-84375', 201)
  1803. go
  1804.  
  1805. insert into EMP_EQUIPMENT values (1194, 'NeXTstation Color 16/400', '652-37816', 213)
  1806. go
  1807.  
  1808. insert into EMP_EQUIPMENT values (1195, 'NeXTstation Color 16/200', '886-84102', 172)
  1809. go
  1810.  
  1811. insert into EMP_EQUIPMENT values (1196, 'NeXTstation  Color Turbo 16/200', '831-87177', 108)
  1812. go
  1813.  
  1814. insert into EMP_EQUIPMENT values (1197, 'NeXTstation  Color Turbo 16/200', '739-26210', 177)
  1815. go
  1816.  
  1817. insert into EMP_EQUIPMENT values (1198, 'NeXTstation 16/200', '396-71735', 125)
  1818. go
  1819.  
  1820. insert into EMP_EQUIPMENT values (1199, 'NeXTstation 16/400', '34-79809', 126)
  1821. go
  1822.  
  1823. insert into EMP_EQUIPMENT values (1200, 'NeXTstation Color 8/105', '334-59161', 185)
  1824. go
  1825.  
  1826. insert into EMP_EQUIPMENT values (1201, 'NeXTDimension', '524-41124', 212)
  1827. go
  1828.  
  1829. insert into EMP_EQUIPMENT values (1202, 'NeXTstation Color 8/105', '836-89146', 110)
  1830. go
  1831.  
  1832. insert into EMP_EQUIPMENT values (1203, 'NeXTstation Color 16/400', '608-57474', 223)
  1833. go
  1834.  
  1835. insert into EMP_EQUIPMENT values (1204, 'NeXTstation  Color Turbo 16/200', '722-85049', 202)
  1836. go
  1837.  
  1838. insert into EMP_EQUIPMENT values (1205, 'NeXTstation  Color Turbo 16/400', '532-78167', 189)
  1839. go
  1840.  
  1841. insert into EMP_EQUIPMENT values (1206, 'NeXTstation Turbo 16/400', '16-926', 196)
  1842. go
  1843.  
  1844. insert into EMP_EQUIPMENT values (1207, 'NeXTstation Turbo 16/400', '518-18514', 133)
  1845. go
  1846.  
  1847. insert into EMP_EQUIPMENT values (1208, 'NeXTDimension', '384-72591', 167)
  1848. go
  1849.  
  1850. insert into EMP_EQUIPMENT values (1209, 'NeXTDimension', '334-21983', 203)
  1851. go
  1852.  
  1853. insert into EMP_EQUIPMENT values (1210, 'NeXTstation  Color Turbo 16/200', '391-49812', 194)
  1854. go
  1855.  
  1856. insert into EMP_EQUIPMENT values (1211, 'NeXTstation Turbo 16/400', '6-87480', 121)
  1857. go
  1858.  
  1859. insert into EMP_EQUIPMENT values (1212, 'NeXTstation  Color Turbo 16/200', '197-13972', 130)
  1860. go
  1861.  
  1862. insert into EMP_EQUIPMENT values (1213, 'NeXTstation Color 16/400', '33-39584', 200)
  1863. go
  1864.  
  1865. insert into EMP_EQUIPMENT values (1214, 'NeXTstation Color 16/200', '992-3848', 195)
  1866. go
  1867.  
  1868. insert into EMP_EQUIPMENT values (1215, 'NeXTstation  Color Turbo 8/105', '277-10448', 101)
  1869. go
  1870.  
  1871. insert into EMP_EQUIPMENT values (1216, 'NeXTstation  Color Turbo 16/400', '975-77088', 191)
  1872. go
  1873.  
  1874. insert into EMP_EQUIPMENT values (1217, 'NeXTstation Turbo 16/400', '294-32339', 220)
  1875. go
  1876.  
  1877. insert into EMP_EQUIPMENT values (1218, 'NeXTDimension', '618-27833', 182)
  1878. go
  1879.  
  1880. insert into EMP_EQUIPMENT values (1219, 'NeXTstation 16/400', '103-83650', 123)
  1881. go
  1882.  
  1883. insert into EMP_EQUIPMENT values (1220, 'NeXTstation  Color Turbo 16/200', '756-14950', 170)
  1884. go
  1885.  
  1886. insert into EMP_EQUIPMENT values (1221, 'NeXTstation 16/400', '436-91312', 216)
  1887. go
  1888.  
  1889. insert into EMP_EQUIPMENT values (1222, 'NeXTstation  Color Turbo 16/200', '489-13117', 159)
  1890. go
  1891.  
  1892. insert into EMP_EQUIPMENT values (1223, 'NeXTstation  Color Turbo 8/105', '579-12221', 168)
  1893. go
  1894.  
  1895. insert into EMP_EQUIPMENT values (1224, 'NeXTstation 16/400', '551-13204', 116)
  1896. go
  1897.  
  1898. insert into EMP_QUOTE(EMP_ID) select EMP_ID from EMPLOYEE
  1899. go
  1900.  
  1901. commit transaction
  1902. go
  1903.  
  1904.  
  1905. /******************************************************************************
  1906. *  Create table indexes.
  1907. ******************************************************************************/
  1908. create unique INDEX EMP_INDEX1 on EMPLOYEE(EMP_ID)
  1909. go
  1910.  
  1911. create unique INDEX DEPT_INDEX1 on DEPARTMENT(DEPT_ID)
  1912. go
  1913.  
  1914. create unique INDEX FACILITY_INDEX1 on FACILITY(LOCATION_ID)
  1915. go
  1916.  
  1917. create unique INDEX EMPPROJ_INDEX1 on EMP_PROJECT(EMP_ID,PROJECT_ID)
  1918. go
  1919.  
  1920. create unique INDEX PROJ_INDEX1 on PROJECT(PROJECT_ID)
  1921. go
  1922.  
  1923. create unique INDEX EMP_PHOTO_INDEX1 on EMP_PHOTO(EMP_ID)
  1924. go
  1925.  
  1926. create unique INDEX EMP_QUOTE_INDEX1 on EMP_QUOTE(EMP_ID)
  1927. go
  1928.  
  1929. create unique INDEX JOB_TITLE_INDEX1 on JOB_TITLE(TITLE_ID)
  1930. go
  1931.  
  1932. create unique INDEX ASSET_INDEX1 on EMP_EQUIPMENT(ASSET_TAG)
  1933. go
  1934.  
  1935.  
  1936. /******************************************************************************
  1937. * Create the UNIQUE_KEY table, which stores the MAX_KEY for each ENTITY_NAME.
  1938. ******************************************************************************/
  1939. create table UNIQUE_KEY (
  1940. ENTITY_NAME varchar(100),
  1941. MAX_KEY int
  1942. )
  1943. go
  1944.  
  1945. insert into UNIQUE_KEY (ENTITY_NAME,MAX_KEY) select 'EMPLOYEE',max(EMP_ID) from EMPLOYEE
  1946. go
  1947. insert into UNIQUE_KEY (ENTITY_NAME,MAX_KEY) select 'DEPARTMENT',max(DEPT_ID) from DEPARTMENT
  1948. go
  1949. insert into UNIQUE_KEY (ENTITY_NAME,MAX_KEY) select 'FACILITY',max(LOCATION_ID) from FACILITY
  1950. go
  1951. insert into UNIQUE_KEY (ENTITY_NAME,MAX_KEY) select 'PROJECT',max(PROJECT_ID) from PROJECT
  1952. go
  1953. insert into UNIQUE_KEY (ENTITY_NAME,MAX_KEY) select 'JOB_TITLE',max(TITLE_ID) from JOB_TITLE
  1954. go
  1955. insert into UNIQUE_KEY (ENTITY_NAME,MAX_KEY) select 'EMP_EQUIPMENT',max(ASSET_TAG) from EMP_EQUIPMENT
  1956. go
  1957.  
  1958. create unique INDEX UNIQUE_KEY_INDEX1 on UNIQUE_KEY(ENTITY_NAME)
  1959. go
  1960.